home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / text / print / VirtPrinters2.lha / screen_printer_source / smakefile < prev    next >
Makefile  |  1993-11-11  |  734b  |  35 lines

  1. SC = sc:c/sc
  2. ASM = sc:c/asm
  3. CFLAGS = idir=include:
  4. ASMFLAGS = -iinclude:
  5. LINK = SC:c/slink
  6. LIB = sc:lib/amiga.lib+sc:lib/scnb.lib
  7. OBJ = printertag.o+init.o+data.o+dospecial.o+render.o+transfer.o+density.o
  8. TARGET = Screen_Printer
  9.  
  10. $(TARGET): printertag.o init.o data.o dospecial.o render.o density.o transfer.o
  11.         $(LINK) <WITH <
  12.         FROM $(OBJ)
  13.         TO $(TARGET)
  14.     LIBRARY $(LIB)
  15.         ND SC SD VERBOSE MAP $(TARGET).map H
  16.         <
  17.  
  18. init.o: init.asm
  19.         $(ASM) $(ASMFLAGS) init.asm
  20.  
  21. printertag.o: printertag.asm scrn_rev.i
  22.         $(ASM) $(ASMFLAGS) printertag.asm
  23.  
  24. transfer.o: transfer.asm
  25.         $(ASM) $(ASMFLAGS) transfer.asm
  26.  
  27. dospecial.o: dospecial.c
  28.  
  29. data.o: data.c
  30.  
  31. density.o: density.c
  32.  
  33. render.o: render.c
  34.  
  35.